home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_lrm / lr2sv.src < prev    next >
Text File  |  1996-01-30  |  896b  |  32 lines

  1.  
  2. --                ON-LINE Ada LANGUAGE REFERENCE MANUAL
  3. --        Developed at Nofolk State University
  4. --        Development funded by a grant from the U. S. Army
  5. --        Project ReDTEA
  6. --        Version 1.0 released December 1988
  7. --        Programmer:        Esther M. Lumsdon
  8. --        Project Director:  George C. Harrison, PhD
  9.  
  10.  
  11.  
  12. with TEXT_IO; use TEXT_IO; 
  13. package MACHINE_SPECIFIC is 
  14.  
  15. ---------------
  16. -- VAX VMS with SMG --
  17. --------------- 
  18.  
  19.   SCREEN_WIDTH  : NATURAL := 80; 
  20.   -- maximum number of characters that can be displayed on a line without wrap
  21.   -- value for VAX VMS
  22.  
  23.   SCREEN_HEIGHT : NATURAL := 23;  ----- old value. changed 7 DEC 88. 24; 
  24.   -- line number on screen of location for prompts. Bottom line of screen.
  25.   -- value for VAX VMS
  26.  
  27.  
  28.  
  29.   procedure CLS; 
  30.  
  31. end MACHINE_SPECIFIC; 
  32.